home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
prog
/
strpchrt.arj
/
MS.MAK
< prev
next >
Wrap
Text File
|
1993-07-31
|
1KB
|
34 lines
#----------------------------------------------------------------------
# Makefile for Strip Chart LIbrary Example Programs
# This makefile recompiles all the example programs.
#
# Compiler: Microsoft C Version 7.00 Small Memory Model
#
# Note: Microsoft uses the "LIB" and "INCLUDE" environment variables
# to locate the compiler libraries and include files.
#
# Usage: NMAKE /f MS.MAK
#
#----------------------------------------------------------------------
# Macro for path of Strip Chart library file
SCLIB = scmss.lib
# Macro for compiler and options
# Note: Microsoft uses the "LIB" and "INCLUDE" environment variables
# to locate the compiler libraries and include files.
CC = cl /AS /FPi /DMICROSOFT=1 /Ot
# Impilicit rule for compiling example programs
.c.exe:
$(CC) $*.c /link $(SCLIB)
# Targets and dependencies
all: clean ex_test.exe ex_trace.exe ex_step.exe
REM Done!
clean:
del ex_test.exe
del ex_trace.exe
del ex_step.exe